home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20040809.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  58 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(14242);
  10.  script_bugtraq_id(10857);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0597","CAN-2004-0598","CAN-2004-0599");
  13.  name["english"] = "Security Update 2004-08-09";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host is missing Security Update 2004-08-09.
  19.  
  20. Libpng is a library used for manipulating graphics files.
  21.  
  22. Several buffer overflows have been discovered in libpng. An attacker
  23. could create a carefully crafted PNG file in such a way that it would
  24. cause an application linked with libpng to execute arbitrary code when
  25. the file was opened by a victim.
  26.  
  27.  
  28. Solution : http://docs.info.apple.com/article.html?artnum=61798
  29. Risk factor : High";
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Check for Security Update 2004-08-09";
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  40.  family["english"] = "MacOS X Local Security Checks";
  41.  script_family(english:family["english"]);
  42.  
  43.  script_dependencies("ssh_get_info.nasl");
  44.  script_require_keys("Host/MacOSX/packages");
  45.  exit(0);
  46. }
  47.  
  48.  
  49. packages = get_kb_item("Host/MacOSX/packages");
  50. if ( ! packages ) exit(0);
  51.  
  52. uname = get_kb_item("Host/uname");
  53. # MacOS X 10.2.x and 10.3.x only
  54. if ( egrep(pattern:"Darwin.* (6\.8\.|7\.4\.)", string:uname) )
  55. {
  56.   if ( ! egrep(pattern:"^SecUpd2004-08-09", string:packages) ) security_hole(0);
  57. }
  58.